ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / MultiSelect<T> Class / HeaderFormat Property






In This Topic
    HeaderFormat Property (MultiSelect<T>)
    In This Topic
    Gets or sets the format string used to create the header content when the control has more than MaxHeaderItems items checked.
    Syntax
    'Declaration
     
    
    Public Property HeaderFormat As System.String
    'Usage
     
    
    Dim instance As MultiSelect(Of T)
    Dim value As System.String
     
    instance.HeaderFormat = value
     
    value = instance.HeaderFormat
    public System.string HeaderFormat {get; set;}
    public read-write property HeaderFormat: System.String; 
    public function get,set HeaderFormat : System.String
    public: __property System.string* get_HeaderFormat();
    public: __property void set_HeaderFormat( 
       System.string* value
    );
    public:
    property System.String^ HeaderFormat {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    The format string may contain the '{count}' replacement string which gets replaced with the number of items currently checked. The default value for this property in the English culture is '{count:n0} items selected'.
    See Also